* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
}

:root {
    --pr: #8f5f13;
    --sec: #f39c12;
}


html {
    scroll-behavior: smooth;
}

.mission {
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contains {
    width: 650px;
    height: 300px;
    background-color: white;
    /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.553), rgba(0, 0, 0, 0.553)),  url('../image/oi.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(0, 0, 0);
    border: 1px solid gainsboro;
    /* max-width: 1200px; */
    padding: 30px;
    box-sizing: border-box;
}

@media screen and (max-width: 1268px) {
    .mission {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .contains {
        width: 100%;
        height: auto;
        background-color: rgba(0, 0, 0, 0.799);
        color: white;
        /* max-width: 1200px; */
        padding: 20px;
        box-sizing: border-box;
    }

    .mission h1 {
        font-size: 24px;
    }

    .mission p {
        font-size: 16px;
    }

}

/* contain2 */


.contain2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
    max-width: 98%;
}

.contain2 .conteudo {
    width: 400px;
}

.contain2 .conteudo h2 {
    font-weight: bold;
    /* color: var(--sec); */
}


/* contains */

.contain {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
}

.contain.containImage {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  url('../image/image (4).jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh; /* ou ajuste conforme necessário */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.contain .conteudo {
    width: 400px;
}

.contain .conteudo h2 {
    font-weight: bold;
    color: white;
}

.theme {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 5% 0px;
    padding: 10px 40px;
}

.theme h4 {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--sec);
}

.barra {
    width: 600px;
    height: 10px;
    background-color: var(--pr);
    max-width: 100%;
}

/* cards */

.cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
}

.cards .card {
    flex: 1 1 300px;
    max-width: 350px;
    min-width: 250px;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid gainsboro;
    box-shadow: none;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
}

.cards .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 46, 134, 0.15);
}

/* Slide effect for mobile */
@media (max-width: 600px) {
    .cards {
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding: 5px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        display: flex;
        justify-content: flex-start;
    }
    .cards::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .cards .card {
        flex: 0 0 80%;
        width: 80%;
        max-width: 80%;
        min-width: 70vw;
        margin: 0;
        height: auto;
        scroll-snap-align: center;
        /* Remove animation on mobile */
        transition: none;
    }
    .cards .card:hover {
        /* Remove hover effect on mobile */
        transform: none;
        box-shadow: none;
    }
}

/* Responsive for tablets */
@media (max-width: 900px) {
    .cards .card {
        max-width: 100%;
        min-width: 200px;
    }
}

/* whatsApp */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
    text-decoration: none;
}